home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Objrepos / CSharp / UserControlTemplate.cs < prev    next >
Encoding:
Text File  |  2004-10-22  |  1.2 KB  |  56 lines

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Data;
  6. using System.Windows.Forms;
  7.  
  8. namespace [!Namespace]
  9. {
  10.     /// <summary>
  11.     /// Summary description for [!UserControlName].
  12.     /// </summary>
  13.     public class [!UserControlName] : [!BaseUserControlClass]
  14.     {
  15.         /// <summary>
  16.         /// Required designer variable.
  17.         /// </summary>
  18.         private System.ComponentModel.Container components = null;
  19.  
  20.         public [!UserControlName]()
  21.         {
  22.             // This call is required by the Windows.Forms Designer.
  23.             InitializeComponent();
  24.  
  25.             //
  26.             // TODO: Add any constructor code after InitializeComponent call
  27.             //
  28.  
  29.         }
  30.  
  31.         /// <summary>
  32.         /// Clean up any resources being used.
  33.         /// </summary>
  34.         protected override void Dispose(bool disposing)
  35.         {
  36.             if (disposing)
  37.             {
  38.                 if (components != null)
  39.                     components.Dispose();
  40.             }
  41.             base.Dispose(disposing);
  42.         }
  43.  
  44.         #region Component Designer generated code
  45.         /// <summary>
  46.         /// Required method for Designer support - do not modify 
  47.         /// the contents of this method with the code editor.
  48.         /// </summary>
  49.         private void InitializeComponent()
  50.         {
  51.             components = new System.ComponentModel.Container();
  52.         }
  53.         #endregion
  54.     }
  55. }
  56.